home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / fontname-1.6.tar.gz / fontname-1.6.tar / fontname-1.6 / fnget.h < prev    next >
C/C++ Source or Header  |  1993-04-09  |  390b  |  20 lines

  1. /* fnget.h
  2.    Graham Asher  */
  3.  
  4. #ifndef FONTNAME_H_
  5. #define FONTNAME_H_ 1
  6.  
  7. #if __STDC__
  8. #include <stddef.h> /* for size_t */
  9. #endif
  10.  
  11. /* This is a pretty kludgy way to get around prototypes, but at least
  12.    non-STDC compilers won't bomb out.  --karl@cs.umb.edu  */
  13. extern int FNget (
  14. #if __STDC__
  15.   char *dest, size_t size, char *filename, char *template
  16. #endif
  17. );
  18.  
  19. #endif /* FONTNAME_H_ */
  20.